TypeScript 定義型別物件


Posted by mijouhsieh on 2024-01-02

官方文件在定義物件型別時,用分號 隔開

var employee : { 
    id: number; 
    name: string; 
}; 

employee = { 
  id: 100, 
  name : "John"
}

之後學到 interface 介面 ,和物件整合

有一些關於要使用分號還是逗號
Should TS interface have a comma or semicolon?

In TypeScript, interfaces and type literals can have members separated by a comma or a semicolon.

It's a good idea to have a consistent style.

They're both valid, but TypeScript prefers semicolon.


#semicolon #TypeScript #object #comma #TS prefer semicolon #interfaces







Related Posts

Android 不負責任系列 - Jetpack 組件、MVVM 架構,簡稱 AAC、整潔架構(Clean Architecture) 的領域層(Domain Layer) UseCase 介紹

Android 不負責任系列 - Jetpack 組件、MVVM 架構,簡稱 AAC、整潔架構(Clean Architecture) 的領域層(Domain Layer) UseCase 介紹

The introduction and difference between class component and function component in React

The introduction and difference between class component and function component in React

七天帶你初探AR世界-Day 6

七天帶你初探AR世界-Day 6


Comments